home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 049a / kqwk100.zip / FUNCKEYS.DOC < prev    next >
Text File  |  1991-08-22  |  1KB  |  42 lines

  1. Notes for configuring user defined function keys for KingQWK.
  2.  
  3. User defined function keys are implemented in KingQWK.  Note that you
  4. must use Shift-[Fkey] to invoke them.  You can configure the function
  5. keys in the "F Keys" area of KingCfg.
  6.  
  7. KingQWK can only directly call a COM or EXE file.  Therefore batch files
  8. and DOS commands must be preceded with:
  9.  
  10. COMMAND.COM /C
  11.  
  12. For example, to append the current message to a file named ANSI.MSG, you
  13. would need to use the following setup.
  14.  
  15. COMMAND.COM /C TYPE @CURRMSG@ >> ANSI.MSG
  16.  
  17. Applicable user macros are:
  18.  
  19. @CONFNUM@  - the current conference number
  20. @BBSID@    - the mail door id for the current BBS from CONTROL.DAT
  21. @CURRMSG@  - the currently displayed message's DOS file name
  22. @WORKDIR@  - the current path to your configured KingQWK working
  23.              directory
  24.  
  25. Sample usage:
  26.  
  27. COMMAND.COM /C TYPE @CURRMSG@ >> @BBSID@.@CONFNUM@
  28.  
  29. might become:
  30.  
  31. COMMAND.COM /C TYPE CURRENT.MSG >> IDCBBS.302
  32.  
  33. and
  34.  
  35. THEDRAW.EXE @CURRMSG@
  36.  
  37. would become:
  38.  
  39. THEDRAW CURRENT.MSG
  40.  
  41. These variables are not case sensitive.  @CONFNUM@ = @confnum@ = @ConfNum@
  42.